Configuration SDK WS Examples
=============================
These simple samples have been created with the intention of illustrating the 
usage of the Genesys Integration Server Configuration API

Examples Overview
-----------------
The samples generally show off different features of the Genesys Integration Server Configuration API.

ConnectSessionServiceExample.cs			- A Simple Example demonstrating how to connect to Session Service
CreateSessionExample.cs				- A Simple Example demontsrating how to create a GIS Session
IdentifyServicesExample.cs			- A Simple Example demonstrating how to subscribe and retrieve list of services
GetConfigurationInformationExample.cs  - A Simple Example demonstrating how to get Configuration Objects
RegisterToConfigurationServiceExample.cs	- A Simple Example demonstrating how to register to Configuration Service
SolicitedNotificationByBlockingExample.cs	- A Simple Example demonstrating how to use Blocking mode to get Configuration updates
SolicitedNotificationByPollingExample.cs	- A Simple Example demonstrating how to use Polling mode to get Configuration updates
UnsolicitedNotificationExample.cs		- A Simple Example demonstrating how to implement mode  to get Configuration updates
UpdateConfigurationDataExample.cs		- A Simple Example demonstrating how to update configuration data

Getting Ready To Build
----------------------
You will need to install the following software before you start. 

Microsoft Visual Studio 2003

Building And Running The Examples using Microsoft Visual Studio 2003
--------------------------------------------------------------------
Before running examples, open "TestSuite.cs" into "Tests" Project and set the GIS host and port in the various Test method like:

public void executeTest1()
		{
			CreateSessionExample example = new CreateSessionExample();
			example.execute("<gis_host>:<gis_port>");
		}

Once updated, you can rebuild Examples, do the
following:

- Open Visual Studio Solution File
	Configuration SDK WS Examples.sln

- Right Click On the Solution Tree and choose "Rebuild Solution"

Once the Examples are built, you can run examples, do the following:

- Menu "Debug" -> "Start Without Debugging"

All the examples will be executed one by one